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 AccountingBalanceSheetOneGlobals = { /** * 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 AccountingBalanceSheetOneRequest = { /** * 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; /** * 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; /** * Apply filters */ filter?: components.BalanceSheetFilter | undefined; /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; }; export type AccountingBalanceSheetOneResponse = { httpMeta: components.HTTPMetadata; /** * BalanceSheet */ getBalanceSheetResponse?: components.GetBalanceSheetResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingBalanceSheetOneGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingBalanceSheetOneGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingBalanceSheetOneGlobals$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 AccountingBalanceSheetOneGlobals$ { /** @deprecated use `AccountingBalanceSheetOneGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBalanceSheetOneGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBalanceSheetOneGlobals$Outbound` instead. */ type Outbound = AccountingBalanceSheetOneGlobals$Outbound; } export declare function accountingBalanceSheetOneGlobalsToJSON(accountingBalanceSheetOneGlobals: AccountingBalanceSheetOneGlobals): string; export declare function accountingBalanceSheetOneGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBalanceSheetOneRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingBalanceSheetOneRequest$Outbound = { serviceId?: string | undefined; pass_through?: { [k: string]: any; } | undefined; filter?: components.BalanceSheetFilter$Outbound | undefined; raw: boolean; }; /** @internal */ export declare const AccountingBalanceSheetOneRequest$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 AccountingBalanceSheetOneRequest$ { /** @deprecated use `AccountingBalanceSheetOneRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBalanceSheetOneRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBalanceSheetOneRequest$Outbound` instead. */ type Outbound = AccountingBalanceSheetOneRequest$Outbound; } export declare function accountingBalanceSheetOneRequestToJSON(accountingBalanceSheetOneRequest: AccountingBalanceSheetOneRequest): string; export declare function accountingBalanceSheetOneRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingBalanceSheetOneResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingBalanceSheetOneResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetBalanceSheetResponse?: components.GetBalanceSheetResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingBalanceSheetOneResponse$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 AccountingBalanceSheetOneResponse$ { /** @deprecated use `AccountingBalanceSheetOneResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingBalanceSheetOneResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingBalanceSheetOneResponse$Outbound` instead. */ type Outbound = AccountingBalanceSheetOneResponse$Outbound; } export declare function accountingBalanceSheetOneResponseToJSON(accountingBalanceSheetOneResponse: AccountingBalanceSheetOneResponse): string; export declare function accountingBalanceSheetOneResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingbalancesheetone.d.ts.map