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 FileStorageDriveGroupsAddGlobals = { /** * 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 FileStorageDriveGroupsAddRequest = { /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; /** * 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; driveGroup: components.DriveGroupInput; }; export type FileStorageDriveGroupsAddResponse = { httpMeta: components.HTTPMetadata; /** * DriveGroups */ createDriveGroupResponse?: components.CreateDriveGroupResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const FileStorageDriveGroupsAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type FileStorageDriveGroupsAddGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const FileStorageDriveGroupsAddGlobals$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 FileStorageDriveGroupsAddGlobals$ { /** @deprecated use `FileStorageDriveGroupsAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsAddGlobals$Outbound` instead. */ type Outbound = FileStorageDriveGroupsAddGlobals$Outbound; } export declare function fileStorageDriveGroupsAddGlobalsToJSON(fileStorageDriveGroupsAddGlobals: FileStorageDriveGroupsAddGlobals): string; export declare function fileStorageDriveGroupsAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageDriveGroupsAddRequest$inboundSchema: z.ZodType; /** @internal */ export type FileStorageDriveGroupsAddRequest$Outbound = { raw: boolean; serviceId?: string | undefined; DriveGroup: components.DriveGroupInput$Outbound; }; /** @internal */ export declare const FileStorageDriveGroupsAddRequest$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 FileStorageDriveGroupsAddRequest$ { /** @deprecated use `FileStorageDriveGroupsAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsAddRequest$Outbound` instead. */ type Outbound = FileStorageDriveGroupsAddRequest$Outbound; } export declare function fileStorageDriveGroupsAddRequestToJSON(fileStorageDriveGroupsAddRequest: FileStorageDriveGroupsAddRequest): string; export declare function fileStorageDriveGroupsAddRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileStorageDriveGroupsAddResponse$inboundSchema: z.ZodType; /** @internal */ export type FileStorageDriveGroupsAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateDriveGroupResponse?: components.CreateDriveGroupResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const FileStorageDriveGroupsAddResponse$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 FileStorageDriveGroupsAddResponse$ { /** @deprecated use `FileStorageDriveGroupsAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FileStorageDriveGroupsAddResponse$Outbound` instead. */ type Outbound = FileStorageDriveGroupsAddResponse$Outbound; } export declare function fileStorageDriveGroupsAddResponseToJSON(fileStorageDriveGroupsAddResponse: FileStorageDriveGroupsAddResponse): string; export declare function fileStorageDriveGroupsAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=filestoragedrivegroupsadd.d.ts.map