Files
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

182 lines
5.1 KiB
TypeScript

import { createLogger } from '@sim/logger'
import { OutlookIcon } from '@/components/icons'
import { requestJson } from '@/lib/api/client/request'
import { outlookFoldersSelectorContract } from '@/lib/api/contracts/selectors/microsoft'
import { useSubBlockStore } from '@/stores/workflows/subblock/store'
import type { TriggerConfig } from '@/triggers/types'
const logger = createLogger('OutlookPollingTrigger')
export const outlookPollingTrigger: TriggerConfig = {
id: 'outlook_poller',
name: 'Outlook Email Trigger',
provider: 'outlook',
description: 'Triggers when new emails are received in Outlook (requires Microsoft credentials)',
version: '1.0.0',
icon: OutlookIcon,
polling: true,
subBlocks: [
{
id: 'triggerCredentials',
title: 'Credentials',
type: 'oauth-input',
description: 'This trigger requires outlook credentials to access your account.',
serviceId: 'outlook',
requiredScopes: [],
required: true,
mode: 'trigger',
},
{
id: 'folderIds',
title: 'Outlook Folders to Monitor',
type: 'dropdown',
multiSelect: true,
placeholder: 'Select Outlook folders to monitor for new emails',
description: 'Choose which Outlook folders to monitor. Leave empty to monitor all emails.',
required: false,
options: [], // Will be populated dynamically
fetchOptions: async (blockId: string) => {
const credentialId = useSubBlockStore.getState().getValue(blockId, 'triggerCredentials') as
| string
| null
if (!credentialId) {
throw new Error('No Outlook credential selected')
}
try {
const data = await requestJson(outlookFoldersSelectorContract, {
query: { credentialId },
})
return data.folders.map((folder) => ({
id: folder.id,
label: folder.name,
}))
} catch (error) {
logger.error('Error fetching Outlook folders:', error)
throw error
}
},
dependsOn: ['triggerCredentials'],
mode: 'trigger',
},
{
id: 'folderFilterBehavior',
title: 'Folder Filter Behavior',
type: 'dropdown',
options: [
{ label: 'INCLUDE', id: 'INCLUDE' },
{ label: 'EXCLUDE', id: 'EXCLUDE' },
],
defaultValue: 'INCLUDE',
description:
'Include only emails from selected folders, or exclude emails from selected folders',
required: true,
mode: 'trigger',
},
{
id: 'markAsRead',
title: 'Mark as Read',
type: 'switch',
defaultValue: false,
description: 'Automatically mark emails as read after processing',
required: false,
mode: 'trigger',
},
{
id: 'includeAttachments',
title: 'Include Attachments',
type: 'switch',
defaultValue: false,
description: 'Download and include email attachments in the trigger payload',
required: false,
mode: 'trigger',
},
{
id: 'triggerInstructions',
title: 'Setup Instructions',
hideFromPreview: true,
type: 'text',
defaultValue: [
'Connect your Microsoft account using OAuth credentials',
'Configure which Outlook folders to monitor (optional)',
'The system will automatically check for new emails and trigger your workflow',
]
.map(
(instruction, index) =>
`<div class="mb-3"><strong>${index + 1}.</strong> ${instruction}</div>`
)
.join(''),
mode: 'trigger',
},
],
outputs: {
email: {
id: {
type: 'string',
description: 'Outlook message ID',
},
conversationId: {
type: 'string',
description: 'Outlook conversation ID',
},
subject: {
type: 'string',
description: 'Email subject line',
},
from: {
type: 'string',
description: 'Sender email address',
},
to: {
type: 'string',
description: 'Recipient email address',
},
cc: {
type: 'string',
description: 'CC recipients',
},
date: {
type: 'string',
description: 'Email date in ISO format',
},
bodyText: {
type: 'string',
description: 'Plain text email body',
},
bodyHtml: {
type: 'string',
description: 'HTML email body',
},
hasAttachments: {
type: 'boolean',
description: 'Whether email has attachments',
},
attachments: {
type: 'file[]',
description: 'Array of email attachments as files (if includeAttachments is enabled)',
},
isRead: {
type: 'boolean',
description: 'Whether email is read',
},
folderId: {
type: 'string',
description: 'Outlook folder ID where email is located',
},
messageId: {
type: 'string',
description: 'Message ID for threading',
},
threadId: {
type: 'string',
description: 'Thread ID for conversation threading',
},
},
timestamp: {
type: 'string',
description: 'Event timestamp',
},
},
}