Files
simstudioai--sim/apps/sim/tools/resend/get_broadcast.ts
T
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

101 lines
3.2 KiB
TypeScript

import { createLogger } from '@sim/logger'
import type { GetBroadcastParams, GetBroadcastResult } from '@/tools/resend/types'
import type { ToolConfig } from '@/tools/types'
const logger = createLogger('ResendGetBroadcastTool')
export const resendGetBroadcastTool: ToolConfig<GetBroadcastParams, GetBroadcastResult> = {
id: 'resend_get_broadcast',
name: 'Get Broadcast',
description: 'Retrieve details of a broadcast by ID',
version: '1.0.0',
params: {
broadcastId: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The ID of the broadcast to retrieve',
},
resendApiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Resend API key',
},
},
request: {
url: (params: GetBroadcastParams) =>
`https://api.resend.com/broadcasts/${encodeURIComponent(params.broadcastId.trim())}`,
method: 'GET',
headers: (params: GetBroadcastParams) => ({
Authorization: `Bearer ${params.resendApiKey}`,
'Content-Type': 'application/json',
}),
},
transformResponse: async (response: Response): Promise<GetBroadcastResult> => {
const data = await response.json()
if (!data.id) {
logger.error('Resend Get Broadcast API error:', JSON.stringify(data, null, 2))
return {
success: false,
error: data.message || 'Failed to retrieve broadcast',
output: {
id: '',
name: '',
audienceId: null,
segmentId: null,
from: '',
subject: '',
replyTo: null,
previewText: null,
status: '',
createdAt: '',
scheduledAt: null,
sentAt: null,
},
}
}
return {
success: true,
output: {
id: data.id,
name: data.name ?? '',
audienceId: data.audience_id ?? null,
segmentId: data.segment_id ?? null,
from: data.from ?? '',
subject: data.subject ?? '',
replyTo: data.reply_to ?? null,
previewText: data.preview_text ?? null,
status: data.status ?? '',
createdAt: data.created_at ?? '',
scheduledAt: data.scheduled_at ?? null,
sentAt: data.sent_at ?? null,
},
}
},
outputs: {
id: { type: 'string', description: 'Broadcast ID' },
name: { type: 'string', description: 'Broadcast name' },
audienceId: { type: 'string', description: 'Audience ID (legacy)', optional: true },
segmentId: {
type: 'string',
description: 'Segment ID (the current recipient field)',
optional: true,
},
from: { type: 'string', description: 'Sender email address' },
subject: { type: 'string', description: 'Broadcast subject' },
replyTo: { type: 'string', description: 'Reply-to email address', optional: true },
previewText: { type: 'string', description: 'Inbox preview text', optional: true },
status: { type: 'string', description: 'Broadcast status (e.g., draft, sent)' },
createdAt: { type: 'string', description: 'Broadcast creation timestamp' },
scheduledAt: { type: 'string', description: 'Scheduled send timestamp', optional: true },
sentAt: { type: 'string', description: 'Timestamp the broadcast was sent', optional: true },
},
}