import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PartitionStats = { /** * Number of pages processed in the current month in this partition. */ pagesProcessedMonthly: number; /** * Number of hosted pages added in the current month in this partition. */ pagesHostedMonthly: number; /** * Total number of pages processed in this partition. */ pagesProcessedTotal: number; /** * Total number of hosted pages in this partition. */ pagesHostedTotal: number; /** * Total number of documents, inclusive of all files types, in this partition. */ documentCount: number; /** * Total number of seconds of video processed in the current month in this partition. */ videoProcessedMonthly: number; /** * Total number of seconds of video processed in this partition. */ videoProcessedTotal: number; /** * Total number of seconds of audio processed in the current month in this partition. */ audioProcessedMonthly: number; /** * Total number of seconds of audio processed in this partition. */ audioProcessedTotal: number; /** * Total number of MBs streamed in the current month in this partition. */ mediaStreamedMonthly: number; /** * Total number of MBs streamed in this partition. */ mediaStreamedTotal: number; /** * Total number of MBs hosted in the current month in this partition. */ mediaHostedMonthly: number; /** * Total number of MBs hosted in this partition. */ mediaHostedTotal: number; }; /** @internal */ export declare const PartitionStats$inboundSchema: z.ZodType; /** @internal */ export type PartitionStats$Outbound = { pages_processed_monthly: number; pages_hosted_monthly: number; pages_processed_total: number; pages_hosted_total: number; document_count: number; video_processed_monthly: number; video_processed_total: number; audio_processed_monthly: number; audio_processed_total: number; media_streamed_monthly: number; media_streamed_total: number; media_hosted_monthly: number; media_hosted_total: number; }; /** @internal */ export declare const PartitionStats$outboundSchema: z.ZodType; export declare function partitionStatsToJSON(partitionStats: PartitionStats): string; export declare function partitionStatsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=partitionstats.d.ts.map