import * as z from "zod"; export type RunHistory = { statusTimestamp: Date; status: string; }; export type Statuses = { statusTimestamp: Date; status: string; }; export type StatusByDate = { dateStamp: string; statuses: Array; }; export type GranularHistory = { source: string; latestSourceStatus: string; statusByDate: Array; }; export type IngestionRunDataContractDto = { runID: string; latestStatus: string; lastUpdatedAt: Date; createdAt: Date; trigger: string; sources: Array; dateStamps: Array; runHistory: Array; granularHistory: Array; }; /** @internal */ export declare const RunHistory$inboundSchema: z.ZodType; /** @internal */ export type RunHistory$Outbound = { statusTimestamp: string; status: string; }; /** @internal */ export declare const RunHistory$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace RunHistory$ { /** @deprecated use `RunHistory$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RunHistory$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RunHistory$Outbound` instead. */ type Outbound = RunHistory$Outbound; } /** @internal */ export declare const Statuses$inboundSchema: z.ZodType; /** @internal */ export type Statuses$Outbound = { statusTimestamp: string; status: string; }; /** @internal */ export declare const Statuses$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Statuses$ { /** @deprecated use `Statuses$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Statuses$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Statuses$Outbound` instead. */ type Outbound = Statuses$Outbound; } /** @internal */ export declare const StatusByDate$inboundSchema: z.ZodType; /** @internal */ export type StatusByDate$Outbound = { dateStamp: string; statuses: Array; }; /** @internal */ export declare const StatusByDate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace StatusByDate$ { /** @deprecated use `StatusByDate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `StatusByDate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `StatusByDate$Outbound` instead. */ type Outbound = StatusByDate$Outbound; } /** @internal */ export declare const GranularHistory$inboundSchema: z.ZodType; /** @internal */ export type GranularHistory$Outbound = { source: string; latestSourceStatus: string; statusByDate: Array; }; /** @internal */ export declare const GranularHistory$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GranularHistory$ { /** @deprecated use `GranularHistory$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GranularHistory$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GranularHistory$Outbound` instead. */ type Outbound = GranularHistory$Outbound; } /** @internal */ export declare const IngestionRunDataContractDto$inboundSchema: z.ZodType; /** @internal */ export type IngestionRunDataContractDto$Outbound = { runID: string; latestStatus: string; lastUpdatedAt: string; createdAt: string; trigger: string; sources: Array; dateStamps: Array; runHistory: Array; granularHistory: Array; }; /** @internal */ export declare const IngestionRunDataContractDto$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IngestionRunDataContractDto$ { /** @deprecated use `IngestionRunDataContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IngestionRunDataContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IngestionRunDataContractDto$Outbound` instead. */ type Outbound = IngestionRunDataContractDto$Outbound; } //# sourceMappingURL=ingestionrundatacontractdto.d.ts.map