UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

22 lines (18 loc) 448 B
/** * Notion Node - Version 1 * Discriminator: resource=databasePage, operation=get */ interface Credentials { notionApi: CredentialReference; } /** Get a database */ export type NotionV1DatabasePageGetParams = { resource: 'databasePage'; operation: 'get'; }; export type NotionV1DatabasePageGetNode = { type: 'n8n-nodes-base.notion'; version: 1; credentials?: Credentials; config: NodeConfig<NotionV1DatabasePageGetParams>; };