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 SubscriberListPushSubscriptionDeliveriesRequest = { /** * The subscription id. */ subscriptionId: string; /** * A CEL string to filter results; See the [CEL Search](https://developer.apexclearing.com/apex-fintech-solutions/docs/cel-search) page in Guides for more information; If left empty, all deliveries the user has permission to view are returned; Filter options include: * * @remarks * `name` * `delivery_id` * `event` * `event_publish_time` * `result` * `last_response` * `last_send_time` * `duration` */ filter?: string | undefined; /** * The number of entries to return in a single page; Default = 100; Maximum = 1000 */ pageSize?: number | undefined; /** * Page token used for pagination; Supplying a page token returns the next page of results */ pageToken?: string | undefined; }; export type SubscriberListPushSubscriptionDeliveriesResponse = { httpMeta: components.HTTPMetadata; /** * OK */ listPushSubscriptionDeliveriesResponse?: components.ListPushSubscriptionDeliveriesResponse | undefined; /** * INVALID_ARGUMENT: The request was not well formed. */ status?: components.Status | undefined; }; /** @internal */ export declare const SubscriberListPushSubscriptionDeliveriesRequest$inboundSchema: z.ZodType; /** @internal */ export type SubscriberListPushSubscriptionDeliveriesRequest$Outbound = { subscription_id: string; filter?: string | undefined; page_size?: number | undefined; page_token?: string | undefined; }; /** @internal */ export declare const SubscriberListPushSubscriptionDeliveriesRequest$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 SubscriberListPushSubscriptionDeliveriesRequest$ { /** @deprecated use `SubscriberListPushSubscriptionDeliveriesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubscriberListPushSubscriptionDeliveriesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SubscriberListPushSubscriptionDeliveriesRequest$Outbound` instead. */ type Outbound = SubscriberListPushSubscriptionDeliveriesRequest$Outbound; } export declare function subscriberListPushSubscriptionDeliveriesRequestToJSON(subscriberListPushSubscriptionDeliveriesRequest: SubscriberListPushSubscriptionDeliveriesRequest): string; export declare function subscriberListPushSubscriptionDeliveriesRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SubscriberListPushSubscriptionDeliveriesResponse$inboundSchema: z.ZodType; /** @internal */ export type SubscriberListPushSubscriptionDeliveriesResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; ListPushSubscriptionDeliveriesResponse?: components.ListPushSubscriptionDeliveriesResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const SubscriberListPushSubscriptionDeliveriesResponse$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 SubscriberListPushSubscriptionDeliveriesResponse$ { /** @deprecated use `SubscriberListPushSubscriptionDeliveriesResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SubscriberListPushSubscriptionDeliveriesResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SubscriberListPushSubscriptionDeliveriesResponse$Outbound` instead. */ type Outbound = SubscriberListPushSubscriptionDeliveriesResponse$Outbound; } export declare function subscriberListPushSubscriptionDeliveriesResponseToJSON(subscriberListPushSubscriptionDeliveriesResponse: SubscriberListPushSubscriptionDeliveriesResponse): string; export declare function subscriberListPushSubscriptionDeliveriesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberlistpushsubscriptiondeliveries.d.ts.map