import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { BatchDeletionOutcome } from "./batchdeletionoutcome.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * OpenRouter-held request and result artifacts were purged. */ export declare const Openrouter: { readonly Deleted: "deleted"; }; /** * OpenRouter-held request and result artifacts were purged. */ export type Openrouter = ClosedEnum; /** * The upstream batch deletion outcome; omitted when no provider was assigned. */ export type Upstream = { /** * The provider name stored on the batch. */ provider: string; /** * Outcome for one deletion target: `deleted` (removed), `unsupported` (the provider has no batch-delete API; supported file cleanup still runs), or `not_applicable` (the batch never reached that target). */ status: BatchDeletionOutcome; }; /** * OpenRouter cleanup and, when a provider was assigned, the upstream batch deletion outcome. */ export type BatchDeletionTargets = { /** * OpenRouter-held request and result artifacts were purged. */ openrouter: Openrouter; /** * The upstream batch deletion outcome; omitted when no provider was assigned. */ upstream?: Upstream | undefined; }; /** @internal */ export declare const Openrouter$inboundSchema: z.ZodEnum; /** @internal */ export declare const Upstream$inboundSchema: z.ZodType; export declare function upstreamFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const BatchDeletionTargets$inboundSchema: z.ZodType; export declare function batchDeletionTargetsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=batchdeletiontargets.d.ts.map