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 type V3CollectionsCrudListGlobals = { organizationId?: string | undefined; }; export declare const CollectionStatuses: { readonly Populating: "populating"; readonly Active: "active"; readonly Paused: "paused"; readonly Archived: "archived"; }; export type CollectionStatuses = ClosedEnum; export type V3CollectionsCrudListRequest = { /** * The ID of a Censys organization to associate the request with. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-find-and-use-your-organization-id-optional) for more information. */ organizationId?: string | undefined; /** * page token for the requested page of collection results */ pageToken?: string | undefined; /** * amount of results to return per page */ pageSize?: number | undefined; /** * statuses of collection for results to be filtered on. */ collectionStatuses?: Array | null | undefined; }; export type V3CollectionsCrudListResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeListCollectionsResponseV1; }; /** @internal */ export declare const CollectionStatuses$outboundSchema: z.ZodNativeEnum; /** @internal */ export type V3CollectionsCrudListRequest$Outbound = { organization_id?: string | undefined; page_token?: string | undefined; page_size?: number | undefined; collection_statuses?: Array | null | undefined; }; /** @internal */ export declare const V3CollectionsCrudListRequest$outboundSchema: z.ZodType; export declare function v3CollectionsCrudListRequestToJSON(v3CollectionsCrudListRequest: V3CollectionsCrudListRequest): string; /** @internal */ export declare const V3CollectionsCrudListResponse$inboundSchema: z.ZodType; export declare function v3CollectionsCrudListResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3collectionscrudlist.d.ts.map