Files
simstudioai--sim/apps/sim/lib/api/contracts/selectors/shared.ts
T
wehub-resource-sync d25d482dc2
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
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

71 lines
2.1 KiB
TypeScript

import { z } from 'zod'
import { defineRouteContract } from '@/lib/api/contracts/types'
export const optionalString = z.string().optional()
/**
* Accepts `string | null | undefined` on the wire and outputs `string |
* undefined` (null collapsed to undefined). Used for fields like `workflowId`
* where the wire is permissive but server-side handlers expect an optional
* string.
*/
export const nullableOptionalString = z
.string()
.nullish()
.transform((value) => value ?? undefined)
export const credentialWorkflowBodySchema = z.object({
credential: z.string().min(1),
workflowId: nullableOptionalString,
})
export const credentialWorkflowDomainBodySchema = credentialWorkflowBodySchema.extend({
domain: z.string().min(1),
})
export const credentialWorkflowImpersonateBodySchema = credentialWorkflowBodySchema.extend({
impersonateEmail: optionalString,
})
export const credentialIdQuerySchema = z.object({
credentialId: z
.string({ error: 'Credential ID is required' })
.min(1, 'Credential ID is required'),
})
export const credentialIdQueryWithSearchSchema = credentialIdQuerySchema.extend({
query: optionalString,
})
export const idNameSchema = z.object({ id: z.string(), name: z.string() }).passthrough()
export const idTitleSchema = z.object({ id: z.string(), title: z.string() }).passthrough()
export const idDisplayNameSchema = z
.object({ id: z.string(), displayName: z.string() })
.passthrough()
export const fileOptionSchema = z.object({ id: z.string(), name: z.string() }).passthrough()
export const folderOptionSchema = z.object({ id: z.string(), name: z.string() }).passthrough()
export const definePostSelector = <TBody extends z.ZodType, TResponse extends z.ZodType>(
path: string,
body: TBody,
response: TResponse
) =>
defineRouteContract({
method: 'POST',
path,
body,
response: { mode: 'json', schema: response },
})
export const defineGetSelector = <TQuery extends z.ZodType, TResponse extends z.ZodType>(
path: string,
query: TQuery,
response: TResponse
) =>
defineRouteContract({
method: 'GET',
path,
query,
response: { mode: 'json', schema: response },
})