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
120 lines
3.1 KiB
TypeScript
120 lines
3.1 KiB
TypeScript
import type { GmailMarkReadParams, GmailToolResponse } from '@/tools/gmail/types'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
export const gmailMarkUnreadTool: ToolConfig<GmailMarkReadParams, GmailToolResponse> = {
|
|
id: 'gmail_mark_unread',
|
|
name: 'Gmail Mark as Unread',
|
|
description: 'Mark a Gmail message as unread',
|
|
version: '1.0.0',
|
|
|
|
oauth: {
|
|
required: true,
|
|
provider: 'google-email',
|
|
},
|
|
|
|
params: {
|
|
accessToken: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'hidden',
|
|
description: 'Access token for Gmail API',
|
|
},
|
|
messageId: {
|
|
type: 'string',
|
|
required: true,
|
|
visibility: 'user-or-llm',
|
|
description: 'ID of the message to mark as unread',
|
|
},
|
|
},
|
|
|
|
request: {
|
|
url: '/api/tools/gmail/mark-unread',
|
|
method: 'POST',
|
|
headers: () => ({
|
|
'Content-Type': 'application/json',
|
|
}),
|
|
body: (params: GmailMarkReadParams) => ({
|
|
accessToken: params.accessToken,
|
|
messageId: params.messageId,
|
|
}),
|
|
},
|
|
|
|
transformResponse: async (response) => {
|
|
const data = await response.json()
|
|
|
|
if (!data.success) {
|
|
return {
|
|
success: false,
|
|
output: {
|
|
content: data.error || 'Failed to mark email as unread',
|
|
metadata: {},
|
|
},
|
|
error: data.error,
|
|
}
|
|
}
|
|
|
|
return {
|
|
success: true,
|
|
output: {
|
|
content: data.output.content,
|
|
metadata: data.output.metadata,
|
|
},
|
|
}
|
|
},
|
|
|
|
outputs: {
|
|
content: { type: 'string', description: 'Success message' },
|
|
metadata: {
|
|
type: 'object',
|
|
description: 'Email metadata',
|
|
properties: {
|
|
id: { type: 'string', description: 'Gmail message ID' },
|
|
threadId: { type: 'string', description: 'Gmail thread ID' },
|
|
labelIds: { type: 'array', items: { type: 'string' }, description: 'Updated email labels' },
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
interface GmailModifyV2Response {
|
|
success: boolean
|
|
output: {
|
|
id?: string
|
|
threadId?: string
|
|
labelIds?: string[]
|
|
}
|
|
}
|
|
|
|
export const gmailMarkUnreadV2Tool: ToolConfig<GmailMarkReadParams, GmailModifyV2Response> = {
|
|
id: 'gmail_mark_unread_v2',
|
|
name: 'Gmail Mark as Unread',
|
|
description: 'Mark a Gmail message as unread. Returns API-aligned fields only.',
|
|
version: '2.0.0',
|
|
oauth: gmailMarkUnreadTool.oauth,
|
|
params: gmailMarkUnreadTool.params,
|
|
request: gmailMarkUnreadTool.request,
|
|
transformResponse: async (response) => {
|
|
const legacy = await gmailMarkUnreadTool.transformResponse!(response)
|
|
if (!legacy.success) return { success: false, output: {}, error: legacy.error }
|
|
const metadata = legacy.output.metadata as any
|
|
return {
|
|
success: true,
|
|
output: {
|
|
id: metadata?.id ?? null,
|
|
threadId: metadata?.threadId ?? null,
|
|
labelIds: metadata?.labelIds ?? null,
|
|
},
|
|
}
|
|
},
|
|
outputs: {
|
|
id: { type: 'string', description: 'Gmail message ID', optional: true },
|
|
threadId: { type: 'string', description: 'Gmail thread ID', optional: true },
|
|
labelIds: {
|
|
type: 'array',
|
|
items: { type: 'string' },
|
|
description: 'Updated email labels',
|
|
optional: true,
|
|
},
|
|
},
|
|
}
|