/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 9422a54462b5 */ import * as z from "zod"; import { ApiError, ApiError$zodSchema } from "./apierror.js"; import { DerivedDestroyResponse, DerivedDestroyResponse$zodSchema, } from "./deriveddestroyresponse.js"; export type DerivedDestroyGlobals = { cloud_name?: string | undefined }; export const DerivedDestroyGlobals$zodSchema: z.ZodType = z.object({ cloud_name: z.string().describe( "The cloud name of your product environment.", ).optional(), }); export type DerivedDestroyResponseResponse = ApiError | DerivedDestroyResponse; export const DerivedDestroyResponseResponse$zodSchema: z.ZodType< DerivedDestroyResponseResponse > = z.union([ ApiError$zodSchema, DerivedDestroyResponse$zodSchema, ]);