/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V3CollectionsCrudDeleteGlobals = { organizationId?: string | undefined; }; export type V3CollectionsCrudDeleteRequest = { /** * 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. Obtain the collection ID using the [list collections endpoint](https://docs.censys.com/reference/v3-collections-crud-list#/) or via the collection URL when using the web console. */ collectionUid: string; }; export type V3CollectionsCrudDeleteResponse = { headers: { [k: string]: Array }; }; /** @internal */ export type V3CollectionsCrudDeleteRequest$Outbound = { organization_id?: string | undefined; collection_uid: string; }; /** @internal */ export const V3CollectionsCrudDeleteRequest$outboundSchema: z.ZodType< V3CollectionsCrudDeleteRequest$Outbound, z.ZodTypeDef, V3CollectionsCrudDeleteRequest > = z.object({ organizationId: z.string().optional(), collectionUid: z.string(), }).transform((v) => { return remap$(v, { organizationId: "organization_id", collectionUid: "collection_uid", }); }); export function v3CollectionsCrudDeleteRequestToJSON( v3CollectionsCrudDeleteRequest: V3CollectionsCrudDeleteRequest, ): string { return JSON.stringify( V3CollectionsCrudDeleteRequest$outboundSchema.parse( v3CollectionsCrudDeleteRequest, ), ); } /** @internal */ export const V3CollectionsCrudDeleteResponse$inboundSchema: z.ZodType< V3CollectionsCrudDeleteResponse, z.ZodTypeDef, unknown > = z.object({ Headers: z.record(z.array(z.string())).default({}), }).transform((v) => { return remap$(v, { "Headers": "headers", }); }); export function v3CollectionsCrudDeleteResponseFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => V3CollectionsCrudDeleteResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'V3CollectionsCrudDeleteResponse' from JSON`, ); }