import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Dataset version. Field names and grain are stable for the life of `v1`. */ export declare const Version: { readonly V1: "v1"; }; /** * Dataset version. Field names and grain are stable for the life of `v1`. */ export type Version = ClosedEnum; export type RankingsDailyMeta = { /** * ISO-8601 timestamp of when the response was generated. Reflects data-freshness because the underlying materialized view continuously ingests upstream events. */ asOf: string; /** * Resolved end of the date window (UTC, inclusive). */ endDate: string; /** * Resolved start of the date window (UTC, inclusive). */ startDate: string; /** * Dataset version. Field names and grain are stable for the life of `v1`. */ version: Version; }; /** @internal */ export declare const Version$inboundSchema: z.ZodEnum; /** @internal */ export declare const RankingsDailyMeta$inboundSchema: z.ZodType; export declare function rankingsDailyMetaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rankingsdailymeta.d.ts.map