import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FileStorageFoldersUpdateGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type FileStorageFoldersUpdateRequest = { /** * ID of the record you are acting upon. */ id: string; /** * Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. */ serviceId?: string | undefined; /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; updateFolderRequest: components.UpdateFolderRequest; }; export type FileStorageFoldersUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Folders */ updateFolderResponse?: components.UpdateFolderResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const FileStorageFoldersUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type FileStorageFoldersUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const FileStorageFoldersUpdateGlobals$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FileStorageFoldersUpdateGlobals$ { /** @deprecated use `FileStorageFoldersUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageFoldersUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageFoldersUpdateGlobals$Outbound` instead. */ type Outbound = FileStorageFoldersUpdateGlobals$Outbound; } export declare function fileStorageFoldersUpdateGlobalsToJSON(fileStorageFoldersUpdateGlobals: FileStorageFoldersUpdateGlobals): string; export declare function fileStorageFoldersUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageFoldersUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type FileStorageFoldersUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; UpdateFolderRequest: components.UpdateFolderRequest$Outbound; }; /** @internal */ export declare const FileStorageFoldersUpdateRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FileStorageFoldersUpdateRequest$ { /** @deprecated use `FileStorageFoldersUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageFoldersUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageFoldersUpdateRequest$Outbound` instead. */ type Outbound = FileStorageFoldersUpdateRequest$Outbound; } export declare function fileStorageFoldersUpdateRequestToJSON(fileStorageFoldersUpdateRequest: FileStorageFoldersUpdateRequest): string; export declare function fileStorageFoldersUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageFoldersUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type FileStorageFoldersUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateFolderResponse?: components.UpdateFolderResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const FileStorageFoldersUpdateResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FileStorageFoldersUpdateResponse$ { /** @deprecated use `FileStorageFoldersUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageFoldersUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageFoldersUpdateResponse$Outbound` instead. */ type Outbound = FileStorageFoldersUpdateResponse$Outbound; } export declare function fileStorageFoldersUpdateResponseToJSON(fileStorageFoldersUpdateResponse: FileStorageFoldersUpdateResponse): string; export declare function fileStorageFoldersUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filestoragefoldersupdate.d.ts.map