import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const Severity: { readonly High: "high"; readonly Medium: "medium"; readonly Low: "low"; readonly None: "none"; }; export type Severity = ClosedEnum; export type SubscribersControllerGetSubscriberNotificationsRequest = { /** * The identifier of the subscriber */ subscriberId: string; limit?: number | undefined; after?: string | undefined; offset?: number | undefined; /** * Filter by read/unread state */ read?: boolean | undefined; /** * Filter by archived state */ archived?: boolean | undefined; /** * Filter by snoozed state */ snoozed?: boolean | undefined; /** * Filter by seen state */ seen?: boolean | undefined; /** * Filter by data attributes (JSON string) */ data?: string | undefined; /** * Filter by severity levels */ severity?: Array | undefined; /** * Filter notifications created on or after this timestamp (Unix timestamp in milliseconds) */ createdGte?: number | undefined; /** * Filter notifications created on or before this timestamp (Unix timestamp in milliseconds) */ createdLte?: number | undefined; /** * Context keys for filtering notifications in multi-context scenarios */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerGetSubscriberNotificationsResponse = { headers: { [k: string]: Array; }; result: components.GetSubscriberNotificationsResponseDto; }; /** @internal */ export declare const Severity$outboundSchema: z.ZodNativeEnum; /** @internal */ export type SubscribersControllerGetSubscriberNotificationsRequest$Outbound = { subscriberId: string; limit: number; after?: string | undefined; offset?: number | undefined; read?: boolean | undefined; archived?: boolean | undefined; snoozed?: boolean | undefined; seen?: boolean | undefined; data?: string | undefined; severity?: Array | undefined; createdGte?: number | undefined; createdLte?: number | undefined; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerGetSubscriberNotificationsRequest$outboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberNotificationsRequestToJSON(subscribersControllerGetSubscriberNotificationsRequest: SubscribersControllerGetSubscriberNotificationsRequest): string; /** @internal */ export declare const SubscribersControllerGetSubscriberNotificationsResponse$inboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberNotificationsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollergetsubscribernotifications.d.ts.map