/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: fa9102717194 */ import * as z from "zod"; import { ApiError, ApiError$zodSchema } from "./apierror.js"; import { FoldersListResponse, FoldersListResponse$zodSchema, } from "./folderslistresponse.js"; export type ShowFolderGlobals = { cloud_name?: string | undefined }; export const ShowFolderGlobals$zodSchema: z.ZodType = z .object({ cloud_name: z.string().describe( "The cloud name of your product environment.", ).optional(), }); export type ShowFolderRequest = { folder: string }; export const ShowFolderRequest$zodSchema: z.ZodType = z .object({ folder: z.string().describe( "The full path of the folder, including any nested folders. Must not be empty, and must not contain double slashes or leading/trailing slashes.", ), }); export type ShowFolderResponse = FoldersListResponse | ApiError; export const ShowFolderResponse$zodSchema: z.ZodType = z .union([ FoldersListResponse$zodSchema, ApiError$zodSchema, ]);