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
85 lines
2.8 KiB
TypeScript
85 lines
2.8 KiB
TypeScript
import { z } from 'zod'
|
|
import { definePostSelector, optionalString } from '@/lib/api/contracts/selectors/shared'
|
|
import type {
|
|
ContractBody,
|
|
ContractBodyInput,
|
|
ContractJsonResponse,
|
|
} from '@/lib/api/contracts/types'
|
|
import { validateAwsRegion } from '@/lib/core/security/input-validation'
|
|
|
|
const cloudwatchLogGroupSchema = z.object({ logGroupName: z.string() }).passthrough()
|
|
const cloudwatchLogStreamSchema = z.object({ logStreamName: z.string() }).passthrough()
|
|
|
|
/**
|
|
* AWS region with format validation. Matches the route-level check via
|
|
* `validateAwsRegion` (e.g. `us-east-1`, `eu-west-2`).
|
|
*/
|
|
const awsRegionSchema = z
|
|
.string()
|
|
.min(1, 'AWS region is required')
|
|
.refine((value) => validateAwsRegion(value).isValid, {
|
|
message: 'Invalid AWS region format (e.g., us-east-1, eu-west-2)',
|
|
})
|
|
|
|
/**
|
|
* Optional integer limit that accepts numbers, numeric strings, empty strings,
|
|
* and null. Empty/null/undefined → undefined (no limit).
|
|
*/
|
|
const optionalLimitSchema = z.preprocess(
|
|
(value) => (value === '' || value === undefined || value === null ? undefined : value),
|
|
z.coerce.number().int().positive().optional()
|
|
)
|
|
|
|
export const cloudwatchLogGroupsBodySchema = z.object({
|
|
accessKeyId: z.string().min(1, 'AWS access key ID is required'),
|
|
secretAccessKey: z.string().min(1, 'AWS secret access key is required'),
|
|
region: awsRegionSchema,
|
|
prefix: optionalString,
|
|
limit: optionalLimitSchema.optional(),
|
|
})
|
|
|
|
export const cloudwatchLogStreamsBodySchema = cloudwatchLogGroupsBodySchema.extend({
|
|
logGroupName: z.string().min(1, 'Log group name is required'),
|
|
})
|
|
|
|
export const cloudwatchLogGroupsSelectorContract = definePostSelector(
|
|
'/api/tools/cloudwatch/describe-log-groups',
|
|
cloudwatchLogGroupsBodySchema,
|
|
z
|
|
.object({
|
|
success: z.boolean().optional(),
|
|
output: z.object({ logGroups: z.array(cloudwatchLogGroupSchema) }),
|
|
})
|
|
.passthrough()
|
|
)
|
|
|
|
export const cloudwatchLogStreamsSelectorContract = definePostSelector(
|
|
'/api/tools/cloudwatch/describe-log-streams',
|
|
cloudwatchLogStreamsBodySchema,
|
|
z
|
|
.object({
|
|
success: z.boolean().optional(),
|
|
output: z.object({ logStreams: z.array(cloudwatchLogStreamSchema) }),
|
|
})
|
|
.passthrough()
|
|
)
|
|
|
|
export type CloudwatchLogGroupsSelectorResponse = ContractJsonResponse<
|
|
typeof cloudwatchLogGroupsSelectorContract
|
|
>
|
|
export type CloudwatchLogStreamsSelectorResponse = ContractJsonResponse<
|
|
typeof cloudwatchLogStreamsSelectorContract
|
|
>
|
|
export type CloudwatchLogGroupsSelectorRequest = ContractBodyInput<
|
|
typeof cloudwatchLogGroupsSelectorContract
|
|
>
|
|
export type CloudwatchLogGroupsSelectorBody = ContractBody<
|
|
typeof cloudwatchLogGroupsSelectorContract
|
|
>
|
|
export type CloudwatchLogStreamsSelectorRequest = ContractBodyInput<
|
|
typeof cloudwatchLogStreamsSelectorContract
|
|
>
|
|
export type CloudwatchLogStreamsSelectorBody = ContractBody<
|
|
typeof cloudwatchLogStreamsSelectorContract
|
|
>
|