import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PartitionLimits, PartitionLimits$Outbound } from "./partitionlimits.js"; import { PartitionStats, PartitionStats$Outbound } from "./partitionstats.js"; export type PartitionDetailMetadataSchema = string | number | boolean | Array | { [k: string]: any; }; export type PartitionDetail = { name: string; isDefault: boolean; /** * Timestamp when the partition exceeded its limits, if applicable. */ limitExceededAt?: Date | null | undefined; description: string | null; contextAware: boolean; metadataSchema: { [k: string]: string | number | boolean | Array | { [k: string]: any; }; } | null; limits: PartitionLimits; stats: PartitionStats; }; /** @internal */ export declare const PartitionDetailMetadataSchema$inboundSchema: z.ZodType; /** @internal */ export type PartitionDetailMetadataSchema$Outbound = string | number | boolean | Array | { [k: string]: any; }; /** @internal */ export declare const PartitionDetailMetadataSchema$outboundSchema: z.ZodType; export declare function partitionDetailMetadataSchemaToJSON(partitionDetailMetadataSchema: PartitionDetailMetadataSchema): string; export declare function partitionDetailMetadataSchemaFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const PartitionDetail$inboundSchema: z.ZodType; /** @internal */ export type PartitionDetail$Outbound = { name: string; is_default: boolean; limit_exceeded_at?: string | null | undefined; description: string | null; context_aware: boolean; metadata_schema: { [k: string]: string | number | boolean | Array | { [k: string]: any; }; } | null; limits: PartitionLimits$Outbound; stats: PartitionStats$Outbound; }; /** @internal */ export declare const PartitionDetail$outboundSchema: z.ZodType; export declare function partitionDetailToJSON(partitionDetail: PartitionDetail): string; export declare function partitionDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=partitiondetail.d.ts.map