import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AccountAddressDeleteRequest = { /** * The ID of the address to delete */ id: string; /** * The publicly shareable identifier used to identify your Bolt merchant division. */ xPublishableKey: string; /** * A unique identifier for a shopper's device, generated by Bolt. The value is retrieved with `Bolt.state.merchantClientId` in your frontend context, per-shopper. This header is required for proper attribution of this operation to your analytics reports. Omitting this header may result in incorrect statistics. */ xMerchantClientId?: string | undefined; }; export type AccountAddressDeleteResponse = { /** * HTTP response content type for this operation */ contentType: string; /** * HTTP response status code for this operation */ statusCode: number; /** * Raw HTTP response; suitable for custom response parsing */ rawResponse: Response; }; /** @internal */ export declare const AccountAddressDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AccountAddressDeleteRequest$Outbound = { id: string; "X-Publishable-Key": string; "X-Merchant-Client-Id"?: string | undefined; }; /** @internal */ export declare const AccountAddressDeleteRequest$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 AccountAddressDeleteRequest$ { /** @deprecated use `AccountAddressDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountAddressDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountAddressDeleteRequest$Outbound` instead. */ type Outbound = AccountAddressDeleteRequest$Outbound; } export declare function accountAddressDeleteRequestToJSON(accountAddressDeleteRequest: AccountAddressDeleteRequest): string; export declare function accountAddressDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AccountAddressDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AccountAddressDeleteResponse$Outbound = { ContentType: string; StatusCode: number; RawResponse: never; }; /** @internal */ export declare const AccountAddressDeleteResponse$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 AccountAddressDeleteResponse$ { /** @deprecated use `AccountAddressDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AccountAddressDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AccountAddressDeleteResponse$Outbound` instead. */ type Outbound = AccountAddressDeleteResponse$Outbound; } export declare function accountAddressDeleteResponseToJSON(accountAddressDeleteResponse: AccountAddressDeleteResponse): string; export declare function accountAddressDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=accountaddressdelete.d.ts.map