/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: fb04e0b3a4df */ import * as z from "zod/v4"; export type StackByPlatform = { aws?: any | null | undefined; gcp?: any | null | undefined; azure?: any | null | undefined; kubernetes?: any | null | undefined; machines?: any | null | undefined; local?: any | null | undefined; test?: any | null | undefined; }; /** @internal */ export type StackByPlatform$Outbound = { aws?: any | null | undefined; gcp?: any | null | undefined; azure?: any | null | undefined; kubernetes?: any | null | undefined; machines?: any | null | undefined; local?: any | null | undefined; test?: any | null | undefined; }; /** @internal */ export const StackByPlatform$outboundSchema: z.ZodType< StackByPlatform$Outbound, StackByPlatform > = z.object({ aws: z.nullable(z.any()).optional(), gcp: z.nullable(z.any()).optional(), azure: z.nullable(z.any()).optional(), kubernetes: z.nullable(z.any()).optional(), machines: z.nullable(z.any()).optional(), local: z.nullable(z.any()).optional(), test: z.nullable(z.any()).optional(), }); export function stackByPlatformToJSON( stackByPlatform: StackByPlatform, ): string { return JSON.stringify(StackByPlatform$outboundSchema.parse(stackByPlatform)); }