2021-05-20 14:31:23 -07:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
import {
|
|
|
|
blocks,
|
|
|
|
} from './Blocks';
|
|
|
|
|
2021-12-29 14:23:22 -08:00
|
|
|
export const pageOperations = [
|
2021-05-20 14:31:23 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2021-12-29 14:23:22 -08:00
|
|
|
version: [
|
|
|
|
1,
|
|
|
|
],
|
2021-05-20 14:31:23 -07:00
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a page',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a page',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Search',
|
|
|
|
value: 'search',
|
|
|
|
description: 'Text search of pages',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-29 14:23:22 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
version: [
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Archive',
|
|
|
|
value: 'archive',
|
|
|
|
description: 'Archive a page',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a page',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Search',
|
|
|
|
value: 'search',
|
|
|
|
description: 'Text search of pages',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
|
|
|
] as INodeProperties[];
|
2021-05-20 14:31:23 -07:00
|
|
|
|
2021-12-29 14:23:22 -08:00
|
|
|
export const pageFields = [
|
2021-05-20 14:31:23 -07:00
|
|
|
|
2021-12-29 14:23:22 -08:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* page:archive */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Page Link or ID',
|
|
|
|
name: 'pageId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
version: [
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'archive',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The Page URL from Notion\'s \'copy link\' functionality (or just the ID contained within the URL)',
|
2021-12-29 14:23:22 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Simplify Output',
|
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
version: [
|
|
|
|
2,
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'archive',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
|
|
|
description: 'Whether to return a simplified version of the response instead of the raw data',
|
|
|
|
},
|
2021-05-20 14:31:23 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* page:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
2021-12-29 14:23:22 -08:00
|
|
|
displayName: 'Parent Page ID or Link',
|
2021-05-20 14:31:23 -07:00
|
|
|
name: 'pageId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The URL from Notion\'s \'copy link\' functionality (or just the ID contained within the URL)',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Title',
|
|
|
|
name: 'title',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2022-04-22 09:29:51 -07:00
|
|
|
description: 'Page title. Appears at the top of the page and can be found via Quick Find.',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
2021-12-29 14:23:22 -08:00
|
|
|
displayName: 'Simplify Output',
|
2021-05-20 14:31:23 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'Whether to return a simplified version of the response instead of the raw data',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
...blocks('page', 'create'),
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* page:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
2021-12-29 14:23:22 -08:00
|
|
|
displayName: 'Page Link or ID',
|
2021-05-20 14:31:23 -07:00
|
|
|
name: 'pageId',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2021-12-29 14:23:22 -08:00
|
|
|
version: [
|
|
|
|
1,
|
|
|
|
],
|
2021-05-20 14:31:23 -07:00
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The Page URL from Notion\'s \'copy link\' functionality (or just the ID contained within the URL)',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
2021-12-29 14:23:22 -08:00
|
|
|
displayName: 'Simplify Output',
|
2021-05-20 14:31:23 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2021-12-29 14:23:22 -08:00
|
|
|
version: [
|
|
|
|
1,
|
|
|
|
],
|
2021-05-20 14:31:23 -07:00
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'Whether to return a simplified version of the response instead of the raw data',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* page:search */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Search Text',
|
|
|
|
name: 'text',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'The text to search for',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 100,
|
|
|
|
},
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
2021-12-29 14:23:22 -08:00
|
|
|
displayName: 'Simplify Output',
|
2021-05-20 14:31:23 -07:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'Whether to return a simplified version of the response instead of the raw data',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
name: 'options',
|
|
|
|
type: 'collection',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'page',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Filters',
|
|
|
|
name: 'filter',
|
|
|
|
placeholder: 'Add Filter',
|
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: false,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Filter',
|
|
|
|
name: 'filters',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Property',
|
|
|
|
name: 'property',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Object',
|
|
|
|
value: 'object',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'object',
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'The name of the property to filter by',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Value',
|
|
|
|
name: 'value',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Database',
|
|
|
|
value: 'database',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Page',
|
|
|
|
value: 'page',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: '',
|
2021-12-29 14:23:22 -08:00
|
|
|
description: 'The value of the property to filter by',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Sort',
|
|
|
|
name: 'sort',
|
|
|
|
placeholder: 'Add Sort',
|
|
|
|
type: 'fixedCollection',
|
|
|
|
typeOptions: {
|
|
|
|
multipleValues: false,
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Sort',
|
|
|
|
name: 'sortValue',
|
|
|
|
values: [
|
|
|
|
{
|
|
|
|
displayName: 'Direction',
|
|
|
|
name: 'direction',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Ascending',
|
|
|
|
value: 'ascending',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Descending',
|
|
|
|
value: 'descending',
|
|
|
|
},
|
|
|
|
],
|
2021-12-29 14:23:22 -08:00
|
|
|
default: 'descending',
|
|
|
|
description: 'The direction to sort',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Timestamp',
|
|
|
|
name: 'timestamp',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Last Edited Time',
|
|
|
|
value: 'last_edited_time',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'last_edited_time',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The name of the timestamp to sort against',
|
2021-05-20 14:31:23 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-29 14:23:22 -08:00
|
|
|
] as INodeProperties[];
|