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
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
import { z } from 'zod'
|
|
import { defineGetSelector, optionalString } from '@/lib/api/contracts/selectors/shared'
|
|
import type { ContractJsonResponse } from '@/lib/api/contracts/types'
|
|
|
|
export const WEALTHBOX_ITEM_TYPES = ['note', 'contact', 'task'] as const
|
|
|
|
const wealthboxItemSchema = z.object({
|
|
id: z.string(),
|
|
name: z.string(),
|
|
type: z.string(),
|
|
content: z.string(),
|
|
createdAt: z.string(),
|
|
updatedAt: z.string(),
|
|
})
|
|
|
|
const wealthboxItemsResponseSchema = z.object({
|
|
items: z.array(wealthboxItemSchema),
|
|
})
|
|
|
|
const wealthboxItemResponseSchema = z.object({
|
|
item: wealthboxItemSchema.optional(),
|
|
})
|
|
|
|
export const wealthboxItemsQuerySchema = z.object({
|
|
credentialId: z.string().min(1),
|
|
type: z.preprocess(
|
|
(value) => (value === '' || value === undefined ? 'contact' : value),
|
|
z.literal('contact').default('contact')
|
|
),
|
|
query: z.preprocess(
|
|
(value) => (value === undefined || value === null ? '' : value),
|
|
optionalString.default('')
|
|
),
|
|
})
|
|
|
|
export const wealthboxItemQuerySchema = z.object({
|
|
credentialId: z.preprocess(
|
|
(value) => value ?? '',
|
|
z.string().min(1, 'Credential ID is required')
|
|
),
|
|
itemId: z.preprocess((value) => value ?? '', z.string().min(1, 'Item ID is required')),
|
|
type: z.preprocess(
|
|
(value) => value || 'note',
|
|
z.enum(WEALTHBOX_ITEM_TYPES, { error: 'type must be one of: note, contact, task' })
|
|
),
|
|
})
|
|
|
|
export const wealthboxItemsSelectorContract = defineGetSelector(
|
|
'/api/tools/wealthbox/items',
|
|
wealthboxItemsQuerySchema,
|
|
wealthboxItemsResponseSchema
|
|
)
|
|
|
|
export const wealthboxItemContract = defineGetSelector(
|
|
'/api/tools/wealthbox/item',
|
|
wealthboxItemQuerySchema,
|
|
wealthboxItemResponseSchema
|
|
)
|
|
|
|
export const wealthboxOAuthItemsContract = defineGetSelector(
|
|
'/api/auth/oauth/wealthbox/items',
|
|
wealthboxItemsQuerySchema,
|
|
wealthboxItemsResponseSchema
|
|
)
|
|
|
|
export const wealthboxOAuthItemContract = defineGetSelector(
|
|
'/api/auth/oauth/wealthbox/item',
|
|
wealthboxItemQuerySchema,
|
|
wealthboxItemResponseSchema
|
|
)
|
|
|
|
export type WealthboxItemsSelectorResponse = ContractJsonResponse<
|
|
typeof wealthboxItemsSelectorContract
|
|
>
|
|
export type WealthboxItemResponse = ContractJsonResponse<typeof wealthboxItemContract>
|
|
export type WealthboxOAuthItemsResponse = ContractJsonResponse<typeof wealthboxOAuthItemsContract>
|
|
export type WealthboxOAuthItemResponse = ContractJsonResponse<typeof wealthboxOAuthItemContract>
|