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 AccountingPurchaseOrdersOneGlobals = { /** * 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 AccountingPurchaseOrdersOneRequest = { /** * 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; }; export type AccountingPurchaseOrdersOneResponse = { httpMeta: components.HTTPMetadata; /** * PurchaseOrders */ getPurchaseOrderResponse?: components.GetPurchaseOrderResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AccountingPurchaseOrdersOneGlobals$inboundSchema: z.ZodType; /** @internal */ export type AccountingPurchaseOrdersOneGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AccountingPurchaseOrdersOneGlobals$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 AccountingPurchaseOrdersOneGlobals$ { /** @deprecated use `AccountingPurchaseOrdersOneGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingPurchaseOrdersOneGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingPurchaseOrdersOneGlobals$Outbound` instead. */ type Outbound = AccountingPurchaseOrdersOneGlobals$Outbound; } export declare function accountingPurchaseOrdersOneGlobalsToJSON(accountingPurchaseOrdersOneGlobals: AccountingPurchaseOrdersOneGlobals): string; export declare function accountingPurchaseOrdersOneGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingPurchaseOrdersOneRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountingPurchaseOrdersOneRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AccountingPurchaseOrdersOneRequest$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 AccountingPurchaseOrdersOneRequest$ { /** @deprecated use `AccountingPurchaseOrdersOneRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingPurchaseOrdersOneRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingPurchaseOrdersOneRequest$Outbound` instead. */ type Outbound = AccountingPurchaseOrdersOneRequest$Outbound; } export declare function accountingPurchaseOrdersOneRequestToJSON(accountingPurchaseOrdersOneRequest: AccountingPurchaseOrdersOneRequest): string; export declare function accountingPurchaseOrdersOneRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountingPurchaseOrdersOneResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountingPurchaseOrdersOneResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetPurchaseOrderResponse?: components.GetPurchaseOrderResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AccountingPurchaseOrdersOneResponse$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 AccountingPurchaseOrdersOneResponse$ { /** @deprecated use `AccountingPurchaseOrdersOneResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountingPurchaseOrdersOneResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountingPurchaseOrdersOneResponse$Outbound` instead. */ type Outbound = AccountingPurchaseOrdersOneResponse$Outbound; } export declare function accountingPurchaseOrdersOneResponseToJSON(accountingPurchaseOrdersOneResponse: AccountingPurchaseOrdersOneResponse): string; export declare function accountingPurchaseOrdersOneResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountingpurchaseordersone.d.ts.map