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 AtsApplicationsAllGlobals = { /** * 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 AtsApplicationsAllRequest = { /** * 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; /** * Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. */ cursor?: string | null | undefined; /** * Optional unmapped key/values that will be passed through to downstream as query parameters. Ie: ?pass_through[search]=leads becomes ?search=leads */ passThrough?: { [k: string]: any; } | undefined; /** * Number of results to return. Minimum 1, Maximum 200, Default 20 */ limit?: number | undefined; }; export type AtsApplicationsAllResponse = { httpMeta: components.HTTPMetadata; /** * Applications */ getApplicationsResponse?: components.GetApplicationsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AtsApplicationsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsAllGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AtsApplicationsAllGlobals$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 AtsApplicationsAllGlobals$ { /** @deprecated use `AtsApplicationsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAllGlobals$Outbound` instead. */ type Outbound = AtsApplicationsAllGlobals$Outbound; } export declare function atsApplicationsAllGlobalsToJSON(atsApplicationsAllGlobals: AtsApplicationsAllGlobals): string; export declare function atsApplicationsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsAllRequest$Outbound = { raw: boolean; serviceId?: string | undefined; cursor?: string | null | undefined; pass_through?: { [k: string]: any; } | undefined; limit: number; }; /** @internal */ export declare const AtsApplicationsAllRequest$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 AtsApplicationsAllRequest$ { /** @deprecated use `AtsApplicationsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAllRequest$Outbound` instead. */ type Outbound = AtsApplicationsAllRequest$Outbound; } export declare function atsApplicationsAllRequestToJSON(atsApplicationsAllRequest: AtsApplicationsAllRequest): string; export declare function atsApplicationsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetApplicationsResponse?: components.GetApplicationsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AtsApplicationsAllResponse$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 AtsApplicationsAllResponse$ { /** @deprecated use `AtsApplicationsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsAllResponse$Outbound` instead. */ type Outbound = AtsApplicationsAllResponse$Outbound; } export declare function atsApplicationsAllResponseToJSON(atsApplicationsAllResponse: AtsApplicationsAllResponse): string; export declare function atsApplicationsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=atsapplicationsall.d.ts.map