chore: import upstream snapshot with attribution
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
+148
View File
@@ -0,0 +1,148 @@
import type { LoopsCreateContactParams, LoopsCreateContactResponse } from '@/tools/loops/types'
import type { ToolConfig } from '@/tools/types'
export const loopsCreateContactTool: ToolConfig<
LoopsCreateContactParams,
LoopsCreateContactResponse
> = {
id: 'loops_create_contact',
name: 'Loops Create Contact',
description:
'Create a new contact in your Loops audience with an email address and optional properties like name, user group, and mailing list subscriptions.',
version: '1.0.0',
params: {
apiKey: {
type: 'string',
required: true,
visibility: 'user-only',
description: 'Loops API key for authentication',
},
email: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'The email address for the new contact',
},
firstName: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'The contact first name',
},
lastName: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'The contact last name',
},
source: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Custom source value replacing the default "API"',
},
subscribed: {
type: 'boolean',
required: false,
visibility: 'user-or-llm',
description: 'Whether the contact receives campaign emails (defaults to true)',
},
userGroup: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Group to segment the contact into (one group per contact)',
},
userId: {
type: 'string',
required: false,
visibility: 'user-or-llm',
description: 'Unique user identifier from your application',
},
mailingLists: {
type: 'json',
required: false,
visibility: 'user-or-llm',
description:
'Mailing list IDs mapped to boolean values (true to subscribe, false to unsubscribe)',
},
customProperties: {
type: 'json',
required: false,
visibility: 'user-or-llm',
description:
'Custom contact properties as key-value pairs (string, number, boolean, or date values)',
},
},
request: {
url: 'https://app.loops.so/api/v1/contacts/create',
method: 'POST',
headers: (params) => ({
'Content-Type': 'application/json',
Authorization: `Bearer ${params.apiKey}`,
}),
body: (params) => {
// Apply custom properties first so standard fields always take precedence
const body: Record<string, unknown> = {}
if (params.customProperties) {
const props =
typeof params.customProperties === 'string'
? JSON.parse(params.customProperties)
: params.customProperties
Object.assign(body, props)
}
body.email = params.email.trim()
if (params.firstName) body.firstName = params.firstName.trim()
if (params.lastName) body.lastName = params.lastName.trim()
if (params.source) body.source = params.source.trim()
if (params.subscribed != null) body.subscribed = params.subscribed
if (params.userGroup) body.userGroup = params.userGroup.trim()
if (params.userId) body.userId = params.userId.trim()
if (params.mailingLists) {
body.mailingLists =
typeof params.mailingLists === 'string'
? JSON.parse(params.mailingLists)
: params.mailingLists
}
return body
},
},
transformResponse: async (response: Response) => {
const data = await response.json()
if (!data.success) {
return {
success: false,
output: {
success: false,
id: null,
},
error: data.message ?? 'Failed to create contact',
}
}
return {
success: true,
output: {
success: true,
id: data.id ?? null,
},
}
},
outputs: {
success: { type: 'boolean', description: 'Whether the contact was created successfully' },
id: {
type: 'string',
description: 'The Loops-assigned ID of the created contact',
optional: true,
},
},
}