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