Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/core/src/types/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ export interface NodeCredentials {
refreshToken: string
expiresAt: number
}
/** Notion API credentials */
notion?: {
apiToken: string
}
}

/**
Expand Down
35 changes: 35 additions & 0 deletions packages/nodes/src/integrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,38 @@ export {
type SlackSearchMatch,
slackCredential,
} from './slack/index.js'

// Notion integrations
export {
notionCreatePageNode,
NotionCreatePageInputSchema,
NotionCreatePageOutputSchema,
type NotionCreatePageInput,
type NotionCreatePageOutput,
notionUpdatePageNode,
NotionUpdatePageInputSchema,
NotionUpdatePageOutputSchema,
type NotionUpdatePageInput,
type NotionUpdatePageOutput,
notionQueryDatabaseNode,
NotionQueryDatabaseInputSchema,
NotionQueryDatabaseOutputSchema,
type NotionQueryDatabaseInput,
type NotionQueryDatabaseOutput,
notionAppendBlocksNode,
NotionAppendBlocksInputSchema,
NotionAppendBlocksOutputSchema,
type NotionAppendBlocksInput,
type NotionAppendBlocksOutput,
NotionBlockSchema,
NotionPropertiesSchema,
NotionFilterSchema,
NotionSortSchema,
NotionPageObjectSchema,
type NotionBlock,
type NotionProperties,
type NotionFilter,
type NotionSort,
type NotionPageObject,
notionCredential,
} from './notion/index.js'
Loading