d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
167 lines
4.3 KiB
TypeScript
167 lines
4.3 KiB
TypeScript
import type { NotionResponse, NotionUpdatePageParams } from '@/tools/notion/types'
|
|
import { PAGE_OUTPUT_PROPERTIES } from '@/tools/notion/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const notionUpdatePageTool: ToolConfig<NotionUpdatePageParams, NotionResponse> = {
|
|
id: 'notion_update_page',
|
|
name: 'Notion Page Updater',
|
|
description: 'Update properties of a Notion page',
|
|
version: '1.0.0',
|
|
|
|
oauth: {
|
|
required: true,
|
|
provider: 'notion',
|
|
},
|
|
|
|
params: {
|
|
accessToken: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'hidden',
|
|
description: 'Notion OAuth access token',
|
|
},
|
|
pageId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'The UUID of the Notion page to update',
|
|
},
|
|
properties: {
|
|
type: 'json',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'JSON object of properties to update',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: (params: NotionUpdatePageParams) => {
|
|
return `https://api.notion.com/v1/pages/${params.pageId.trim()}`
|
|
},
|
|
method: 'PATCH',
|
|
headers: (params: NotionUpdatePageParams) => {
|
|
if (!params.accessToken) {
|
|
throw new Error('Access token is required')
|
|
}
|
|
|
|
return {
|
|
Authorization: `Bearer ${params.accessToken}`,
|
|
'Notion-Version': '2022-06-28',
|
|
'Content-Type': 'application/json',
|
|
}
|
|
},
|
|
body: (params: NotionUpdatePageParams) => ({
|
|
properties: params.properties,
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
let pageTitle = 'Untitled'
|
|
|
|
// Try to extract the title from properties
|
|
if (data.properties?.title) {
|
|
const titleProperty = data.properties.title
|
|
if (
|
|
titleProperty.title &&
|
|
Array.isArray(titleProperty.title) &&
|
|
titleProperty.title.length > 0
|
|
) {
|
|
pageTitle = titleProperty.title.map((t: any) => t.plain_text || '').join('')
|
|
}
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
content: 'Successfully updated page properties',
|
|
metadata: {
|
|
title: pageTitle,
|
|
pageId: data.id,
|
|
url: data.url,
|
|
lastEditedTime: data.last_edited_time,
|
|
updatedTime: new Date().toISOString(),
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
content: {
|
|
type: 'string',
|
|
description: 'Success message confirming page properties update',
|
|
},
|
|
metadata: {
|
|
type: 'object',
|
|
description: 'Page metadata including title, page ID, URL, and update timestamps',
|
|
properties: {
|
|
title: { type: 'string', description: 'Page title' },
|
|
pageId: PAGE_OUTPUT_PROPERTIES.id,
|
|
url: PAGE_OUTPUT_PROPERTIES.url,
|
|
lastEditedTime: PAGE_OUTPUT_PROPERTIES.last_edited_time,
|
|
updatedTime: {
|
|
type: 'string',
|
|
description: 'ISO 8601 timestamp when update was performed',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
// V2 Tool with API-aligned outputs
|
|
interface NotionUpdatePageV2Response {
|
|
success: boolean
|
|
output: {
|
|
id: string
|
|
title: string
|
|
url: string
|
|
last_edited_time: string
|
|
}
|
|
}
|
|
|
|
export const notionUpdatePageV2Tool: ToolConfig<
|
|
NotionUpdatePageParams,
|
|
NotionUpdatePageV2Response
|
|
> = {
|
|
id: 'notion_update_page_v2',
|
|
name: 'Notion Page Updater',
|
|
description: 'Update properties of a Notion page',
|
|
version: '2.0.0',
|
|
oauth: notionUpdatePageTool.oauth,
|
|
params: notionUpdatePageTool.params,
|
|
request: notionUpdatePageTool.request,
|
|
|
|
transformResponse: async (response: Response) => {
|
|
const data = await response.json()
|
|
let pageTitle = 'Untitled'
|
|
|
|
if (data.properties?.title) {
|
|
const titleProperty = data.properties.title
|
|
if (
|
|
titleProperty.title &&
|
|
Array.isArray(titleProperty.title) &&
|
|
titleProperty.title.length > 0
|
|
) {
|
|
pageTitle = titleProperty.title.map((t: any) => t.plain_text || '').join('')
|
|
}
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
id: data.id,
|
|
title: pageTitle,
|
|
url: data.url,
|
|
last_edited_time: data.last_edited_time,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
id: PAGE_OUTPUT_PROPERTIES.id,
|
|
title: { type: 'string', description: 'Page title' },
|
|
url: PAGE_OUTPUT_PROPERTIES.url,
|
|
last_edited_time: PAGE_OUTPUT_PROPERTIES.last_edited_time,
|
|
},
|
|
}
|