Skip to main content

Variable: GatewaySecretMappingSchema

const GatewaySecretMappingSchema: ZodObject<{
target_field: ZodString;
secret_reference_id: ZodString;
secret_key: ZodOptional<ZodNullable<ZodString>>;
value_format: ZodOptional<ZodNullable<ZodEnum<["json", "string"]>>>;
}, "strict", ZodTypeAny, {
target_field: string;
secret_reference_id: string;
secret_key?: string | null;
value_format?: "string" | "json" | null;
}, {
target_field: string;
secret_reference_id: string;
secret_key?: string | null;
value_format?: "string" | "json" | null;
}>;

Defined in: src/models/ai-gateway-requests.ts:70