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"; /** * Direction of sorting */ export declare const TopicsControllerListTopicSubscriptionsQueryParamOrderDirection: { readonly Asc: "ASC"; readonly Desc: "DESC"; }; /** * Direction of sorting */ export type TopicsControllerListTopicSubscriptionsQueryParamOrderDirection = ClosedEnum; export type TopicsControllerListTopicSubscriptionsRequest = { /** * The key identifier of the topic */ topicKey: string; /** * Cursor for pagination indicating the starting point after which to fetch results. */ after?: string | undefined; /** * Cursor for pagination indicating the ending point before which to fetch results. */ before?: string | undefined; /** * Limit the number of items to return (max 100) */ limit?: number | undefined; /** * Direction of sorting */ orderDirection?: TopicsControllerListTopicSubscriptionsQueryParamOrderDirection | undefined; /** * Field to order by */ orderBy?: string | undefined; /** * Include cursor item in response */ includeCursor?: boolean | undefined; /** * Filter by subscriber ID */ subscriberId?: string | undefined; /** * Filter by exact context keys, order insensitive (format: "type:id") */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type TopicsControllerListTopicSubscriptionsResponse = { headers: { [k: string]: Array; }; result: components.ListTopicSubscriptionsResponseDto; }; /** @internal */ export declare const TopicsControllerListTopicSubscriptionsQueryParamOrderDirection$outboundSchema: z.ZodNativeEnum; /** @internal */ export type TopicsControllerListTopicSubscriptionsRequest$Outbound = { topicKey: string; after?: string | undefined; before?: string | undefined; limit?: number | undefined; orderDirection?: string | undefined; orderBy?: string | undefined; includeCursor?: boolean | undefined; subscriberId?: string | undefined; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const TopicsControllerListTopicSubscriptionsRequest$outboundSchema: z.ZodType; export declare function topicsControllerListTopicSubscriptionsRequestToJSON(topicsControllerListTopicSubscriptionsRequest: TopicsControllerListTopicSubscriptionsRequest): string; /** @internal */ export declare const TopicsControllerListTopicSubscriptionsResponse$inboundSchema: z.ZodType; export declare function topicsControllerListTopicSubscriptionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=topicscontrollerlisttopicsubscriptions.d.ts.map