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 Criticality: { readonly Critical: "critical"; readonly NonCritical: "nonCritical"; readonly All: "all"; }; export type Criticality = ClosedEnum; export type SubscribersControllerGetSubscriberPreferencesRequest = { /** * The identifier of the subscriber */ subscriberId: string; criticality?: Criticality | undefined; /** * Context keys for filtering preferences (e.g., ["tenant:acme"]) */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerGetSubscriberPreferencesResponse = { headers: { [k: string]: Array; }; result: components.GetSubscriberPreferencesDto; }; /** @internal */ export declare const Criticality$outboundSchema: z.ZodNativeEnum; /** @internal */ export type SubscribersControllerGetSubscriberPreferencesRequest$Outbound = { subscriberId: string; criticality: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerGetSubscriberPreferencesRequest$outboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberPreferencesRequestToJSON(subscribersControllerGetSubscriberPreferencesRequest: SubscribersControllerGetSubscriberPreferencesRequest): string; /** @internal */ export declare const SubscribersControllerGetSubscriberPreferencesResponse$inboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberPreferencesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollergetsubscriberpreferences.d.ts.map