import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3CollectionsCrudUpdateGlobals = { organizationId?: string | undefined; }; export type V3CollectionsCrudUpdateRequest = { /** * 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; /** * The UID for the collection */ collectionUid: string; crudUpdateInputBody?: components.CrudUpdateInputBody | undefined; }; export type V3CollectionsCrudUpdateResponse = { headers: { [k: string]: Array; }; result: components.ResponseEnvelopeCollection; }; /** @internal */ export type V3CollectionsCrudUpdateRequest$Outbound = { organization_id?: string | undefined; collection_uid: string; CrudUpdateInputBody?: components.CrudUpdateInputBody$Outbound | undefined; }; /** @internal */ export declare const V3CollectionsCrudUpdateRequest$outboundSchema: z.ZodType; export declare function v3CollectionsCrudUpdateRequestToJSON(v3CollectionsCrudUpdateRequest: V3CollectionsCrudUpdateRequest): string; /** @internal */ export declare const V3CollectionsCrudUpdateResponse$inboundSchema: z.ZodType; export declare function v3CollectionsCrudUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3collectionscrudupdate.d.ts.map