Variable: GatewayConfigCreateResponseSchema
const GatewayConfigCreateResponseSchema: ZodObject<{
id: ZodString;
version_id: ZodString;
slug: ZodString;
object: ZodString;
}, "passthrough", ZodTypeAny, objectOutputType<{
id: ZodString;
version_id: ZodString;
slug: ZodString;
object: ZodString;
}, ZodTypeAny, "passthrough">, objectInputType<{
id: ZodString;
version_id: ZodString;
slug: ZodString;
object: ZodString;
}, ZodTypeAny, "passthrough">>;
Defined in: src/models/ai-gateway.ts:570
POST /configs response — a 4-field creation receipt, not a GatewayConfig or
GatewayConfigDetail. Verified live 2026-07-28 (create -> read -> delete cycle).
Confirms the "create returns a receipt, not the record" pattern first established for
GatewayDeploymentCreateResponseSchema also holds for configs. Call GatewayConfigDetailSchema's get() for the full record.